home *** CD-ROM | disk | FTP | other *** search
/ Oral Ecstasy / Oral Ecstasy (Over 1000 Hi-Res Color Photos).ISO / autorun / prdi.~pa < prev    next >
Text File  |  1996-02-01  |  494b  |  30 lines

  1. unit Prdi;
  2.  
  3. interface
  4.  
  5. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
  6.   StdCtrls, ExtCtrls;
  7.  
  8. type
  9.   TBtnBottomDlg = class(TForm)
  10.     OKBtn: TBitBtn;
  11.     CancelBtn: TBitBtn;
  12.     Bevel1: TBevel;
  13.     RadioButton1: TRadioButton;
  14.     RadioButton2: TRadioButton;
  15.     RadioButton3: TRadioButton;
  16.   private
  17.     { Private declarations }
  18.   public
  19.     { Public declarations }
  20.   end;
  21.  
  22. var
  23.   BtnBottomDlg: TBtnBottomDlg;
  24.  
  25. implementation
  26.  
  27. {$R *.DFM}
  28.  
  29. end.
  30.